home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / Caml Light 0.7 / Caml Light 0.7 source / src / lex / grammar.mli < prev    next >
Text File  |  1995-07-05  |  398b  |  26 lines

  1. type token =
  2.     Tident of string
  3.   | Tchar of char
  4.   | Tstring of string
  5.   | Taction of syntax__location
  6.   | Trule
  7.   | Tparse
  8.   | Tand
  9.   | Tequal
  10.   | Tend
  11.   | Tor
  12.   | Tunderscore
  13.   | Teof
  14.   | Tlbracket
  15.   | Trbracket
  16.   | Tstar
  17.   | Tmaybe
  18.   | Tplus
  19.   | Tlparen
  20.   | Trparen
  21.   | Tcaret
  22.   | Tdash
  23. ;;
  24. value lexer_definition :
  25.   (lexing__lexbuf  -> token) -> lexing__lexbuf -> syntax__lexer_definition;;
  26.